Package words.ranges

Source Code of words.ranges.AsposeRanges

package words.ranges;

import com.aspose.words.Document;
import com.aspose.words.Range;

public class AsposeRanges
{
  public static void main(String[] args) throws Exception
  {
    Document doc = new Document("data/document.doc");
    Range range = doc.getRange();
   
    String text = range.getText();
    System.out.println("Range: " + text);
  }
}
TOP

Related Classes of words.ranges.AsposeRanges

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.